home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-02-05 | 715 b | 38 lines | [TEXT/MSCT] |
- //
- // Used Images.M1S: show image list for document
- //
-
- //
- // *************************************
- // Procedures
- // *************************************
- //
- proc imageProc
- //
- // This procedure is also called for the document itself
- // but we're only interested in images used by the document -
- // so we exclude the document from the report
- //
- if it <> theJob then
- print
- Left(
- it.CLASS_NAME
- +" ",16)
- +it.name
- end if
- end proc
-
- //
- // Execute a procedure for all images
- //
- theJob = it
-
- print "Used Image List for " + theJob.name
-
- on document do imageProc
- scan theJob links uses,contains,overlaps
- scan reset
-
- print "---------------------------------------"
-
-